/* Custom CSS without using body root * selector */
.bcpd-hero-section {
    position: relative;
}

.bcpd-hero-image {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.bcpd-hero-title {
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1;
}

.bcpd-hero-description {
    text-align: left;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 18px;
    margin-top: 20px;
}

.bcpd-hero-button {
    background-color: darkred;
    color:white;
    font-size: larger;
    margin-top: 20px;
    margin-bottom: 80px;
    text-align: left;
    border: none;
    padding: 12px 30px;
}

.bcpd-hero-button:hover {
    background-color: #b30000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bcpd-section-title {
    text-align: center;
    font-size: 60px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.bcpd-section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.bcpd-features-list {
    padding-left: 20px;
}

.bcpd-features-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.bcpd-know-more-btn {
    background-color: darkred;
    color:white;
    font-size: larger;
    margin-bottom: 80px;
    border: none;
    padding: 12px 30px;
}

.bcpd-know-more-btn:hover {
    background-color: #b30000;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bcpd-career-list {
    padding-left: 20px;
}

.bcpd-career-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.bcpd-faq-item {
    margin-bottom: 20px;
}

.bcpd-faq-question {
    font-weight: bold;
    color: #333;
}

.bcpd-faq-answer {
    color: #555;
    margin-left: 20px;
}

.bcpd-subheading {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.bcpd-left-aligned-text {
    text-align: left;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .bcpd-hero-title {
        font-size: 55px;
    }
    
    .bcpd-section-title {
        font-size: 55px;
    }
}

@media (max-width: 992px) {
    .bcpd-hero-title {
        font-size: 45px;
    }
    
    .bcpd-section-title {
        font-size: 45px;
    }
    
    .bcpd-hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .bcpd-hero-title {
        font-size: 38px;
    }
    
    .bcpd-section-title {
        font-size: 38px;
    }
    
    .bcpd-hero-image {
        height: 400px;
    }
    
    .bcpd-hero-description {
        font-size: 16px;
    }
    
    .bcpd-section-subtitle {
        font-size: 18px;
    }
    
    .bcpd-left-aligned-text {
        margin-left: 0;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .bcpd-hero-title {
        font-size: 32px;
    }
    
    .bcpd-section-title {
        font-size: 32px;
    }
    
    .bcpd-hero-image {
        height: 350px;
    }
    
    .bcpd-hero-button, .bcpd-know-more-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .bcpd-features-list, .bcpd-career-list {
        padding-left: 10px;
    }
}